home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Selection / Multimedia Selection Volume One - CD-ROM / MULTIMEDIA SELECTION____________.ISO / programz / c / cuj0905.arj / 9N05067A < prev    next >
Encoding:
Text File  |  1991-03-04  |  184 b   |  13 lines

  1.  
  2. #include <stdio.h>
  3. main()
  4.      {
  5.      int c;
  6.      while (1)
  7.              {
  8.              c = getch();
  9.              printf ("\n Value of c is %d", c);
  10.              }
  11.     }
  12.  
  13.